From c9de4c5c3c4b576f60c6e9408c9479456644d6f1 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 8 Jul 2010 09:56:10 +0100 Subject: [PATCH] xend: Continue domain building even if memshr extensions are not present in the hypervisor. Signed-off-by: Keir Fraser --- tools/python/xen/xend/image.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/python/xen/xend/image.py b/tools/python/xen/xend/image.py index 144f4f846a..1983502a2e 100644 --- a/tools/python/xen/xend/image.py +++ b/tools/python/xen/xend/image.py @@ -830,8 +830,10 @@ class HVMImageHandler(ImageHandler): self.acpi = int(vmConfig['platform'].get('acpi', 0)) self.guest_os_type = vmConfig['platform'].get('guest_os_type') self.memory_sharing = int(vmConfig['memory_sharing']) - xc.dom_set_memshr(self.vm.getDomid(), self.memory_sharing) - + try: + xc.dom_set_memshr(self.vm.getDomid(), self.memory_sharing) + except: + pass # Return a list of cmd line args to the device models based on the # xm config file -- 2.30.2